home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -in_the_mag- / basics / amos / bobclip.lha / bobclip / Install < prev    next >
Text File  |  1997-07-27  |  800b  |  37 lines

  1. ;Installerscript for BobClip
  2. ;Author Mike Hiltunen
  3. ;Copyright © 1997 by Mike Hiltunen, all rights reserved
  4.  
  5. (set #DirName "BobClip")
  6. (set #Ver "v1.34")
  7.  
  8. (
  9.   ;Get destination dir for BobClip files
  10.   (set mydest
  11.       (askdir
  12.           (prompt "Where do you wish to install BobClip?\n"
  13.                   "A directory named "#DirName" will be created here.")
  14.           (help "The drawer "#DirName" will be created here to "
  15.                 "include the program "#DirName" " #Ver" and "
  16.                 "complimentary files and data.\n\n" @askfile-help)
  17.           (default "RAM:")
  18.           (disk)
  19.        )
  20.    )
  21.   
  22.    (set @default-dest mydest)
  23.    (copyfiles
  24.     (source "/BobClip.info")
  25.     (dest mydest)
  26.    )
  27.  
  28.    (set mydest(tackon mydest #DirName))
  29.    (copyfiles
  30.     (source "")
  31.     (dest mydest)
  32.     (all)
  33.    )
  34. )
  35.  
  36.  
  37.